home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Agent Central Host Computer
/
Agent - Central Host Computer.iso
/
_SETUP.1
/
startup.sql
< prev
next >
Wrap
Text File
|
2000-05-12
|
1KB
|
27 lines
/* RCSVER $Id: startup.sql,v 1.3 2000-02-08 13:32:21-06 randy Exp $ */
/* *************************************************************************
* Copyright (C) 1999, Agent Systems, Inc. All Rights Reserved.
*
* Name: startup.sql
* Date: 02/23/1999
* memo: Randy Wood
* Description: Create the startup table. startup contains information
* from the startup farebox record.
* Changes:
************************************************************************* */
CREATE TABLE startup
(
det_seq_num NUMBER(38) /* pointer to mstrrec record */
CONSTRAINT ref1_startup REFERENCES mstrrec(det_seq_num),
farebox_glid NUMBER(38), /* Farebox ID from global_id */
conv_date DATE, /* Date for this record */
su_date DATE, /* Date/time of actual startup */
su_dow NUMBER(1), /* day of week (0-6) */
su_tz NUMBER(38), /* timezone */
su_isdst NUMBER(1), /* Is this daylight savings time? */
rs_version NUMBER(38), /* Record Structure version */
config_num NUMBER(38), /* Data configuration number */
bus_id NUMBER(38), /* Bus id, not the glid */
CONSTRAINT pk_startup PRIMARY KEY (det_seq_num)
);